home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Languages / MS Fortran 5.1 / DISK6 / MTRX_WD.DE$ / MTRX_WD.bin
Encoding:
Text File  |  1991-04-25  |  669 b   |  25 lines

  1. ; MTRX_WD.DEF
  2. ; Module-definition file for FORTRAN QuickWin
  3. ; program using DLL
  4.  
  5. NAME         MTRX_WD         ; application's module name
  6.  
  7. DESCRIPTION  'FORTRAN 5.1 QuickWin Program with DLL'
  8.  
  9. APPLOADER    '__MSLANGLOAD'  ; described in FL.DEF
  10.  
  11. EXETYPE      WINDOWS 3.0     ; required for all Windows applications
  12.  
  13. STUB         'WINSTUB.EXE'   ; Generates error message if application
  14.                  ;     is run without Windows
  15.  
  16. ;CODE can be moved in memory and discarded/reloaded
  17. CODE  PRELOAD MOVEABLE DISCARDABLE
  18.  
  19. DATA  PRELOAD MOVEABLE
  20.  
  21. HEAPSIZE     1024
  22. STACKSIZE    5120      ; recommended minimum for Windows applications
  23.  
  24. IMPORTS      MATLIB.MultMatrices
  25.